home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
SourceCode
/
MiscKit1.7.1
/
MiscKit
/
Palettes
/
MiscCalendarPalette
/
MiscCalendarView.subproj
/
SimpleDate.h
< prev
next >
Wrap
Text File
|
1995-04-12
|
797b
|
45 lines
// Copyright (C) 1995 Jon Kutemeier
// Use is governed by the MiscKit license
/******************************************************************************
* $Log$
******************************************************************************/
#import <objc/Object.h>
#import "misckit/DateDelegateProtocol.h"
@interface SimpleDate : Object <DateDelegate>
{
int day,
month,
year;
char dateString[64];
}
- init;
- (int)day;
- (int)month;
- (int)year;
- setYear:(int)year month:(int)month day:(int)day;
- (int)numberOfDaysInMonth;
- (int)startDayOfMonth;
- incrementMonth;
- decrementMonth;
- incrementYear;
- decrementYear;
- (const char *)monthStringValue;
- (const char *)dateStringValue;
- read:(NXTypedStream *)aStream;
- write:(NXTypedStream *)aStream;
@end